home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / video / zapem-0.000 / zapem-0 / zapem / Keyboard.h < prev    next >
C/C++ Source or Header  |  1995-03-29  |  249b  |  18 lines

  1. #ifndef ALKEYBOARD_H
  2. #define ALKEYBOARD_H
  3. #include "control.h"
  4.  
  5. class
  6. Keyboard : public Control
  7. {
  8. private:
  9.     int right,left,down,up,fire1,fire2,fire3,fire4;
  10.     int getkey(void);
  11. public:
  12.     Keyboard();
  13.  
  14.     void calibrate(void);
  15.     void fetch(void);
  16. };
  17. #endif
  18.